home *** CD-ROM | disk | FTP | other *** search
/ Hottest 6 / Hottest 6 (1996)(PDSoft)[!].iso / software / rendering / pov / povray40 / makefile < prev    next >
Makefile  |  1978-11-24  |  1KB  |  53 lines

  1. # Makefile for Persistence of Vision Raytracer
  2. # This file is released to the public domain.
  3. #
  4. #
  5. # MAKE Macros and Such...
  6. #
  7.  
  8. #***************************************************************
  9. #*
  10. #*                      Amiga Options
  11. #*
  12. #***************************************************************
  13.  
  14. # Uncomment for Amiga Lattice C for IEEE w/o coprocessor
  15. #CFLAGS    = -cusrft -fi -m0 -b0 -O -v
  16.  
  17. # Uncomment for Amiga Lattice C with 68040
  18. CFLAGS    = UNSCHAR STRMERGE MATH=8 CPU=68040 DATA=FAR NOSTKCHK OPTIMIZE PARM=REGISTER
  19. CC = sc
  20.  
  21. # Flags for debugging
  22. #CFLAGS    = -cusrft -q5w5e -d5
  23.  
  24. #LIBSIEEE    = LIB:scmieee.lib LIB:scnb.lib lib:amiga.lib
  25. LIBS881    = LIB:scm881.lib LIB:scnb.lib lib:amiga.lib
  26.  
  27. OBJ    = o
  28. MACHINE_OBJ    = amiga.$(OBJ)
  29.  
  30. POVOBJS = povray.$(OBJ) render.$(OBJ) tokenize.$(OBJ) parse.$(OBJ) \
  31.       objects.$(OBJ) spheres.$(OBJ) quadrics.$(OBJ) lighting.$(OBJ) \
  32.       prioq.$(OBJ) texture.$(OBJ) matrices.$(OBJ) csg.$(OBJ)  hfield.$(OBJ)\
  33.       txtcolor.$(OBJ) txtbump.$(OBJ) txtmap.$(OBJ) txttest.$(OBJ) \
  34.       colour.$(OBJ) viewpnt.$(OBJ) ray.$(OBJ) planes.$(OBJ) iff.$(OBJ) \
  35.       gif.$(OBJ) gifdecod.$(OBJ) triangle.$(OBJ) raw.$(OBJ) dump.$(OBJ) \
  36.       targa.$(OBJ) poly.$(OBJ) bezier.$(OBJ) vect.$(OBJ) \
  37.           blob.$(OBJ) boxes.$(OBJ) point.$(OBJ) $(MACHINE_OBJ)
  38.  
  39.  
  40. #  Amiga Linkage...
  41. #
  42.  povray881: $(POVOBJS)
  43.     slink <with <
  44.     from lib:c.o $(POVOBJS) LIB $(LIBS881) to povray881
  45.     <
  46.  
  47.  
  48.  
  49.  povrayieee: $(POVOBJS)
  50.     slink <with <
  51.     from lib:c.o $(POVOBJS) LIB $(LIBSIEEE) to povrayieee
  52.     <
  53.